Initializes a new instance of the 
RateCardFinder class.
Syntax
            
            
            
            
            'Declaration
 
Public Function New( _
   ByVal  As List(Of RateCard), _
   ByVal  As Rates, _
   ByVal  As Boolean, _
   ByVal  As Boolean _
)
             
        
            
            'Usage
 
Dim cards As List(Of RateCard)
Dim parent As Rates
Dim isEmployerRatecard As Boolean
Dim findExactly As Boolean
 
Dim instance As New RateCardFinder(cards, parent, isEmployerRatecard, findExactly)
             
        
            
            public RateCardFinder( 
   List<RateCard> ,
   Rates ,
   bool ,
   bool 
)
             
        
            
            public RateCardFinder( 
    : List;
    : Rates;
    : Boolean;
    : Boolean
); 
             
        
            
            public function RateCardFinder( 
    : List,
    : Rates,
    : boolean,
    : boolean
);
             
        
            
            public: RateCardFinder( 
   List<RateCard*>* ,
   Rates* ,
   bool ,
   bool 
)
             
        
            
            public:
RateCardFinder( 
   List<RateCard^>^ ,
   Rates^ ,
   bool ,
   bool 
)
             
        
             
        
            Parameters
- cards
- The cards.
- parent
- The parent.
- isEmployerRatecard
- if set to true[is employer ratecard].
- findExactly
- if set to true[find exactly].
 
            
            
            
            
            
            
            
            
            
            
            
            See Also